home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / rr65 / readme.txt next >
Encoding:
Text File  |  1996-09-15  |  2.8 KB  |  69 lines

  1. Delphi Components For R&R Version 6.5 XBASE and SQL Editions
  2. ============================================================
  3.  
  4. 24th October 1995
  5.  
  6. You are free to copy and distribute these files as you wish.
  7.  
  8. Please email comments,bugs(+fixes if poss!),enhancements to :
  9. cbrooksbank@msn.com
  10.  
  11.  
  12. R&R XBASE Installation
  13. ----------------------
  14. 1. Copy RRX65.PAS and RRXINT.PAS to the same directory.
  15. 2. Start Delphi.
  16. 3. Select Options Menu, Install Components,Add,Browse,RRX65.PAS.
  17. 4. Select OK, dont save changes and Delphi compiles the unit into your
  18.    library.
  19. 5. Thats it you now have a new component on your "Data Access" tab.
  20.  
  21. R&R SQL Installation
  22. --------------------
  23. 1. Copy RRSQL65.PAS and RRSQLINT.PAS to the same directory.
  24. 2. Start Delphi.
  25. 3. Select Options Menu, Install Components,Add,Browse,RRSQL65.PAS.
  26. 4. Select OK, dont save changes and Delphi compiles the unit into your
  27.    library.
  28. 5. Thats it you now have a new component on your "Data Access" tab.
  29.  
  30. Methods
  31. -------
  32. ( All methods assume ReportLibrary contains a valid library )
  33. Execute                    - Runs report respecting object properties.
  34. Run                        - Runs report respecting object properties.
  35. Loadfromreport             - Change objects properties to reflect defaults
  36.                              saved with report.
  37.  
  38. SaveToFile(filename)       - Save object propertys to ASCII control file
  39. LoadFromFile(filename)     - Load object propertys from ASCII control file
  40.  
  41. Notes
  42. -----
  43. The active property never changes to TRUE. But double clicking on it runs
  44. the report at design (or run) time.
  45.  
  46. Yes I know it would have been much nicer to have common stuff in a Ancestor
  47. component. But common calls are in different DLL's depending on SQL/XBASE
  48. and after struggling I gave up and went back to cut and paste.
  49.  
  50. Still no custom property editors.
  51.  
  52. More properties are autoloaded from report. To stop this overwriting your
  53. properties this only happens at design time and if you change the report
  54. library or reportname. In addition it asks for confirmation.
  55.  
  56. To load properties from report at runtime use the new method LoadFromReport.
  57.  
  58. Whats New
  59. ---------
  60. 1. Supports R&R XBASE (new XBASE only properties) as well as SQL edition.
  61. 2. Uses much less memory in data and stack segment ( uses heap in preference).
  62.    This means you are less likely to see the Runtime error 202 as you run
  63.    out of stack space when having several reports open at same time.
  64. 3. Active property allows you to run reports at design time just double
  65.    click on Active property. ( Removed bug with this from last version ).
  66. 4. New methods SaveToFile,LoadFromFile and Loadfromreport.
  67. 5. Initialises R&R DLL at object creation time and closes at object
  68.    destruction. This should speed up report printing a bit.
  69.